home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 72 / Cine Live 72.iso / pc / Data / Interface / loading.k < prev    next >
Encoding:
Text File  |  2003-03-03  |  996 b   |  53 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000152; 
  4.     release Editor:
  5.         IOWindow is {$000001FC,$0000005C,$000001D8,$00000347,$00000000,$00000000,$00000000,$00000000};
  6.         LayoutWindow is {$0000009B,$0000002B,$0000032F,$00000267,$00000000,$00000000,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; Cursor is oEmptyCursor; 
  10.     
  11.     Width is 800; Height is 600; 
  12.     
  13.     
  14.     Elements is [
  15.         oLOADING2,
  16.         oCache3
  17.     ];
  18. end;
  19.  
  20. object oLOADING2 is cImage
  21. with 
  22.     Flags is $00000154; 
  23.     Name is "LOADING"; 
  24.     
  25.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  26.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  27.     
  28.     URL is "../Images/LOADING.JPG"; 
  29.     
  30.     
  31. end;
  32.  
  33. object oCache3 is cCacheLoader
  34. with 
  35.     Flags is $00000054; 
  36.     Name is "Cache"; 
  37.     Shown is false; 
  38.     X is 148; Y is 319; 
  39.     Width is 500; Height is 10; 
  40.     
  41.     
  42.     Events is [
  43.         cOnscreenEvent
  44.         with Flags is $00000004; 
  45.             Commands is [
  46.                 cUpdateCacheCommand
  47.                 with end,
  48.                 cBrowseCommand
  49.                 with URL is "sommaire.k"; end
  50.             ];
  51.         end
  52.     ];
  53. end;